home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / python-support / python-rdflib / rdflib / RDFS.py < prev    next >
Encoding:
Python Source  |  2007-04-04  |  580 b   |  21 lines

  1. from rdflib.Namespace import Namespace
  2.  
  3. RDFSNS = Namespace("http://www.w3.org/2000/01/rdf-schema#")
  4.  
  5. Resource = RDFSNS["Resource"]
  6. Class = RDFSNS["Class"]
  7. subClassOf = RDFSNS["subClassOf"]
  8. subPropertyOf = RDFSNS["subPropertyOf"]
  9. comment = RDFSNS["comment"]
  10. label = RDFSNS["label"]
  11. domain = RDFSNS["domain"]
  12. range = RDFSNS["range"]
  13. seeAlso = RDFSNS["seeAlso"]
  14. isDefinedBy = RDFSNS["isDefinedBy"]
  15. Literal = RDFSNS["Literal"]
  16. Container = RDFSNS["Container"]
  17. ContainerMembershipProperty = RDFSNS["ContainerMembershipProperty"]
  18. member = RDFSNS["member"]
  19. Datatype = RDFSNS["Datatype"]
  20.  
  21.